home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-04-21 | 634 b | 30 lines | [TEXT/RBT2] |
- ` RADAR LOVE. Simply locks on quickly and fires.
- ` Kicks SITTING DUCKs feathered butt consistently.
-
- ` TES 3-21-89
- 10 equip 0 5 0 0 0 300
-
- ` Find if enemy is above or below...
- 15 swivel 180
- 20 objectscan 90
- 30 if range=0 then goto15
-
- ` Find the 10 degree arc that the enemy is within...
- 40 let fred = 0-95
- 50 swivel fred
- 60 swivel 10
- 70 objectscan 5
- 80if range=0 then goto 60
-
- ` Narrow it down to the exact angle...
- 90 let george = 0 - 6
- 100 swivel george
- 110 swivel 1
- 120 objectscan 0
- 130 if range=0 then goto 110
-
- ` And nail him with the hard stuff.
- 190 launch
- 200 objectscan 0
- 210 if range = 0 then goto 20
- 220 goto 190